*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: consolas;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #121213;
}
.loader{
    position: relative;
    -webkit-box-reflect: below -2px linear-gradient(transparent,#0002);
}
.loader::before{
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100px;
    background: #0078ff;
    animation: blink 0.8s steps(3) infinite;
    -webkit-animation: blink 0.8s steps(3) infinite;
}
@keyframes blink{
    0%,75%{
        opacity: 1;
    }
    76%,100%{
        opacity: 0;
    }
}
.loader h2{
    position: relative;
    color: #0078ff;
    font-size: 2.4em;
    text-transform: uppercase;
    animation: typing 4s steps(10) infinite;
    -webkit-animation: typing 4s steps(10) infinite;
    overflow: hidden;
}
@keyframes typing{
    0%,90%,100%{
        width: 0px;
    }
    30%,60%{
        width: 527.81px;
    }

}